home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / totallys.swf / scripts / frame_10 / PlaceObject2_129_90 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Text File  |  2007-09-28  |  389 b   |  22 lines

  1. onClipEvent(enterFrame){
  2.    _root.cible._x = _root._xMouse;
  3.    _root.cible._y = _root._yMouse;
  4.    i = int(_root._xMouse * 0.078);
  5.    if(1 >= i)
  6.    {
  7.       i = 1;
  8.    }
  9.    else if(i >= 50)
  10.    {
  11.       i = 50;
  12.    }
  13.    if(200 < _root.cible._y)
  14.    {
  15.       _root.canon.gotoAndStop(i);
  16.    }
  17.    else if(200 >= _root.cible._y)
  18.    {
  19.       _root.canon.gotoAndStop(i + 50);
  20.    }
  21. }
  22.